cmd.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. #include "ar9170.h"
  39. #include "cmd.h"
  40. int ar9170_write_mem(struct ar9170 *ar, const __le32 *data, size_t len)
  41. {
  42. int err;
  43. if (unlikely(!IS_ACCEPTING_CMD(ar)))
  44. return 0;
  45. err = ar->exec_cmd(ar, AR9170_CMD_WMEM, len, (u8 *) data, 0, NULL);
  46. if (err)
  47. printk(KERN_DEBUG "%s: writing memory failed\n",
  48. wiphy_name(ar->hw->wiphy));
  49. return err;
  50. }
  51. int ar9170_write_reg(struct ar9170 *ar, const u32 reg, const u32 val)
  52. {
  53. __le32 buf[2] = {
  54. cpu_to_le32(reg),
  55. cpu_to_le32(val),
  56. };
  57. int err;
  58. if (unlikely(!IS_ACCEPTING_CMD(ar)))
  59. return 0;
  60. err = ar->exec_cmd(ar, AR9170_CMD_WREG, sizeof(buf),
  61. (u8 *) buf, 0, NULL);
  62. if (err)
  63. printk(KERN_DEBUG "%s: writing reg %#x (val %#x) failed\n",
  64. wiphy_name(ar->hw->wiphy), reg, val);
  65. return err;
  66. }
  67. static int ar9170_read_mreg(struct ar9170 *ar, int nregs,
  68. const u32 *regs, u32 *out)
  69. {
  70. int i, err;
  71. __le32 *offs, *res;
  72. if (unlikely(!IS_ACCEPTING_CMD(ar)))
  73. return 0;
  74. /* abuse "out" for the register offsets, must be same length */
  75. offs = (__le32 *)out;
  76. for (i = 0; i < nregs; i++)
  77. offs[i] = cpu_to_le32(regs[i]);
  78. /* also use the same buffer for the input */
  79. res = (__le32 *)out;
  80. err = ar->exec_cmd(ar, AR9170_CMD_RREG,
  81. 4 * nregs, (u8 *)offs,
  82. 4 * nregs, (u8 *)res);
  83. if (err)
  84. return err;
  85. /* convert result to cpu endian */
  86. for (i = 0; i < nregs; i++)
  87. out[i] = le32_to_cpu(res[i]);
  88. return 0;
  89. }
  90. int ar9170_read_reg(struct ar9170 *ar, u32 reg, u32 *val)
  91. {
  92. return ar9170_read_mreg(ar, 1, &reg, val);
  93. }
  94. int ar9170_echo_test(struct ar9170 *ar, u32 v)
  95. {
  96. __le32 echobuf = cpu_to_le32(v);
  97. __le32 echores;
  98. int err;
  99. if (unlikely(!IS_ACCEPTING_CMD(ar)))
  100. return -ENODEV;
  101. err = ar->exec_cmd(ar, AR9170_CMD_ECHO,
  102. 4, (u8 *)&echobuf,
  103. 4, (u8 *)&echores);
  104. if (err)
  105. return err;
  106. if (echobuf != echores)
  107. return -EINVAL;
  108. return 0;
  109. }