ahb.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*
  2. * Copyright (c) 2008-2009 Atheros Communications Inc.
  3. * Copyright (c) 2009 Gabor Juhos <juhosg@openwrt.org>
  4. * Copyright (c) 2009 Imre Kaloz <kaloz@openwrt.org>
  5. *
  6. * Permission to use, copy, modify, and/or distribute this software for any
  7. * purpose with or without fee is hereby granted, provided that the above
  8. * copyright notice and this permission notice appear in all copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  11. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  13. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include <linux/nl80211.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/etherdevice.h>
  21. #include <ar231x_platform.h>
  22. #include "ath5k.h"
  23. #include "debug.h"
  24. #include "base.h"
  25. #include "reg.h"
  26. #include "debug.h"
  27. /* return bus cachesize in 4B word units */
  28. static void ath5k_ahb_read_cachesize(struct ath_common *common, int *csz)
  29. {
  30. *csz = L1_CACHE_BYTES >> 2;
  31. }
  32. static bool
  33. ath5k_ahb_eeprom_read(struct ath_common *common, u32 off, u16 *data)
  34. {
  35. struct ath5k_softc *sc = common->priv;
  36. struct platform_device *pdev = to_platform_device(sc->dev);
  37. struct ar231x_board_config *bcfg = pdev->dev.platform_data;
  38. u16 *eeprom, *eeprom_end;
  39. bcfg = pdev->dev.platform_data;
  40. eeprom = (u16 *) bcfg->radio;
  41. eeprom_end = ((void *) bcfg->config) + BOARD_CONFIG_BUFSZ;
  42. eeprom += off;
  43. if (eeprom > eeprom_end)
  44. return false;
  45. *data = *eeprom;
  46. return true;
  47. }
  48. int ath5k_hw_read_srev(struct ath5k_hw *ah)
  49. {
  50. struct ath5k_softc *sc = ah->ah_sc;
  51. struct platform_device *pdev = to_platform_device(sc->dev);
  52. struct ar231x_board_config *bcfg = pdev->dev.platform_data;
  53. ah->ah_mac_srev = bcfg->devid;
  54. return 0;
  55. }
  56. static int ath5k_ahb_eeprom_read_mac(struct ath5k_hw *ah, u8 *mac)
  57. {
  58. struct ath5k_softc *sc = ah->ah_sc;
  59. struct platform_device *pdev = to_platform_device(sc->dev);
  60. struct ar231x_board_config *bcfg = pdev->dev.platform_data;
  61. u8 *cfg_mac;
  62. if (to_platform_device(sc->dev)->id == 0)
  63. cfg_mac = bcfg->config->wlan0_mac;
  64. else
  65. cfg_mac = bcfg->config->wlan1_mac;
  66. memcpy(mac, cfg_mac, ETH_ALEN);
  67. return 0;
  68. }
  69. static const struct ath_bus_ops ath_ahb_bus_ops = {
  70. .ath_bus_type = ATH_AHB,
  71. .read_cachesize = ath5k_ahb_read_cachesize,
  72. .eeprom_read = ath5k_ahb_eeprom_read,
  73. .eeprom_read_mac = ath5k_ahb_eeprom_read_mac,
  74. };
  75. /*Initialization*/
  76. static int ath_ahb_probe(struct platform_device *pdev)
  77. {
  78. struct ar231x_board_config *bcfg = pdev->dev.platform_data;
  79. struct ath5k_softc *sc;
  80. struct ieee80211_hw *hw;
  81. struct resource *res;
  82. void __iomem *mem;
  83. int irq;
  84. int ret = 0;
  85. u32 reg;
  86. if (!pdev->dev.platform_data) {
  87. dev_err(&pdev->dev, "no platform data specified\n");
  88. ret = -EINVAL;
  89. goto err_out;
  90. }
  91. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  92. if (res == NULL) {
  93. dev_err(&pdev->dev, "no memory resource found\n");
  94. ret = -ENXIO;
  95. goto err_out;
  96. }
  97. mem = ioremap_nocache(res->start, resource_size(res));
  98. if (mem == NULL) {
  99. dev_err(&pdev->dev, "ioremap failed\n");
  100. ret = -ENOMEM;
  101. goto err_out;
  102. }
  103. res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
  104. if (res == NULL) {
  105. dev_err(&pdev->dev, "no IRQ resource found\n");
  106. ret = -ENXIO;
  107. goto err_out;
  108. }
  109. irq = res->start;
  110. hw = ieee80211_alloc_hw(sizeof(struct ath5k_softc), &ath5k_hw_ops);
  111. if (hw == NULL) {
  112. dev_err(&pdev->dev, "no memory for ieee80211_hw\n");
  113. ret = -ENOMEM;
  114. goto err_out;
  115. }
  116. sc = hw->priv;
  117. sc->hw = hw;
  118. sc->dev = &pdev->dev;
  119. sc->iobase = mem;
  120. sc->irq = irq;
  121. sc->devid = bcfg->devid;
  122. if (bcfg->devid >= AR5K_SREV_AR2315_R6) {
  123. /* Enable WMAC AHB arbitration */
  124. reg = __raw_readl((void __iomem *) AR5K_AR2315_AHB_ARB_CTL);
  125. reg |= AR5K_AR2315_AHB_ARB_CTL_WLAN;
  126. __raw_writel(reg, (void __iomem *) AR5K_AR2315_AHB_ARB_CTL);
  127. /* Enable global WMAC swapping */
  128. reg = __raw_readl((void __iomem *) AR5K_AR2315_BYTESWAP);
  129. reg |= AR5K_AR2315_BYTESWAP_WMAC;
  130. __raw_writel(reg, (void __iomem *) AR5K_AR2315_BYTESWAP);
  131. } else {
  132. /* Enable WMAC DMA access (assuming 5312 or 231x*/
  133. /* TODO: check other platforms */
  134. reg = __raw_readl((void __iomem *) AR5K_AR5312_ENABLE);
  135. if (to_platform_device(sc->dev)->id == 0)
  136. reg |= AR5K_AR5312_ENABLE_WLAN0;
  137. else
  138. reg |= AR5K_AR5312_ENABLE_WLAN1;
  139. __raw_writel(reg, (void __iomem *) AR5K_AR5312_ENABLE);
  140. /*
  141. * On a dual-band AR5312, the multiband radio is only
  142. * used as pass-through. Disable 2 GHz support in the
  143. * driver for it
  144. */
  145. if (to_platform_device(sc->dev)->id == 0 &&
  146. (bcfg->config->flags & (BD_WLAN0|BD_WLAN1)) ==
  147. (BD_WLAN1|BD_WLAN0))
  148. __set_bit(ATH_STAT_2G_DISABLED, sc->status);
  149. }
  150. ret = ath5k_init_softc(sc, &ath_ahb_bus_ops);
  151. if (ret != 0) {
  152. dev_err(&pdev->dev, "failed to attach device, err=%d\n", ret);
  153. ret = -ENODEV;
  154. goto err_free_hw;
  155. }
  156. platform_set_drvdata(pdev, hw);
  157. return 0;
  158. err_free_hw:
  159. ieee80211_free_hw(hw);
  160. platform_set_drvdata(pdev, NULL);
  161. err_out:
  162. return ret;
  163. }
  164. static int ath_ahb_remove(struct platform_device *pdev)
  165. {
  166. struct ar231x_board_config *bcfg = pdev->dev.platform_data;
  167. struct ieee80211_hw *hw = platform_get_drvdata(pdev);
  168. struct ath5k_softc *sc;
  169. u32 reg;
  170. if (!hw)
  171. return 0;
  172. sc = hw->priv;
  173. if (bcfg->devid >= AR5K_SREV_AR2315_R6) {
  174. /* Disable WMAC AHB arbitration */
  175. reg = __raw_readl((void __iomem *) AR5K_AR2315_AHB_ARB_CTL);
  176. reg &= ~AR5K_AR2315_AHB_ARB_CTL_WLAN;
  177. __raw_writel(reg, (void __iomem *) AR5K_AR2315_AHB_ARB_CTL);
  178. } else {
  179. /*Stop DMA access */
  180. reg = __raw_readl((void __iomem *) AR5K_AR5312_ENABLE);
  181. if (to_platform_device(sc->dev)->id == 0)
  182. reg &= ~AR5K_AR5312_ENABLE_WLAN0;
  183. else
  184. reg &= ~AR5K_AR5312_ENABLE_WLAN1;
  185. __raw_writel(reg, (void __iomem *) AR5K_AR5312_ENABLE);
  186. }
  187. ath5k_deinit_softc(sc);
  188. platform_set_drvdata(pdev, NULL);
  189. return 0;
  190. }
  191. static struct platform_driver ath_ahb_driver = {
  192. .probe = ath_ahb_probe,
  193. .remove = ath_ahb_remove,
  194. .driver = {
  195. .name = "ar231x-wmac",
  196. .owner = THIS_MODULE,
  197. },
  198. };
  199. static int __init
  200. ath5k_ahb_init(void)
  201. {
  202. return platform_driver_register(&ath_ahb_driver);
  203. }
  204. static void __exit
  205. ath5k_ahb_exit(void)
  206. {
  207. platform_driver_unregister(&ath_ahb_driver);
  208. }
  209. module_init(ath5k_ahb_init);
  210. module_exit(ath5k_ahb_exit);