int.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Wireless Host Controller (WHC) interrupt handling.
  3. *
  4. * Copyright (C) 2007 Cambridge Silicon Radio Ltd.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License version
  8. * 2 as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <linux/kernel.h>
  19. #include <linux/init.h>
  20. #include <linux/uwb/umc.h>
  21. #include "../../wusbcore/wusbhc.h"
  22. #include "whcd.h"
  23. static void transfer_done(struct whc *whc)
  24. {
  25. queue_work(whc->workqueue, &whc->async_work);
  26. queue_work(whc->workqueue, &whc->periodic_work);
  27. }
  28. irqreturn_t whc_int_handler(struct usb_hcd *hcd)
  29. {
  30. struct wusbhc *wusbhc = usb_hcd_to_wusbhc(hcd);
  31. struct whc *whc = wusbhc_to_whc(wusbhc);
  32. u32 sts;
  33. sts = le_readl(whc->base + WUSBSTS);
  34. if (!(sts & WUSBSTS_INT_MASK))
  35. return IRQ_NONE;
  36. le_writel(sts & WUSBSTS_INT_MASK, whc->base + WUSBSTS);
  37. if (sts & WUSBSTS_GEN_CMD_DONE)
  38. wake_up(&whc->cmd_wq);
  39. if (sts & WUSBSTS_HOST_ERR)
  40. dev_err(&whc->umc->dev, "FIXME: host system error\n");
  41. if (sts & WUSBSTS_ASYNC_SCHED_SYNCED)
  42. wake_up(&whc->async_list_wq);
  43. if (sts & WUSBSTS_PERIODIC_SCHED_SYNCED)
  44. wake_up(&whc->periodic_list_wq);
  45. if (sts & WUSBSTS_DNTS_INT)
  46. queue_work(whc->workqueue, &whc->dn_work);
  47. /*
  48. * A transfer completed (see [WHCI] section 4.7.1.2 for when
  49. * this occurs).
  50. */
  51. if (sts & (WUSBSTS_INT | WUSBSTS_ERR_INT))
  52. transfer_done(whc);
  53. return IRQ_HANDLED;
  54. }
  55. static int process_dn_buf(struct whc *whc)
  56. {
  57. struct wusbhc *wusbhc = &whc->wusbhc;
  58. struct dn_buf_entry *dn;
  59. int processed = 0;
  60. for (dn = whc->dn_buf; dn < whc->dn_buf + WHC_N_DN_ENTRIES; dn++) {
  61. if (dn->status & WHC_DN_STATUS_VALID) {
  62. wusbhc_handle_dn(wusbhc, dn->src_addr,
  63. (struct wusb_dn_hdr *)dn->dn_data,
  64. dn->msg_size);
  65. dn->status &= ~WHC_DN_STATUS_VALID;
  66. processed++;
  67. }
  68. }
  69. return processed;
  70. }
  71. void whc_dn_work(struct work_struct *work)
  72. {
  73. struct whc *whc = container_of(work, struct whc, dn_work);
  74. int processed;
  75. do {
  76. processed = process_dn_buf(whc);
  77. } while (processed);
  78. }