1. 07 3月, 2013 1 次提交
  2. 21 11月, 2012 1 次提交
  3. 15 11月, 2012 1 次提交
  4. 13 9月, 2012 1 次提交
  5. 09 5月, 2012 1 次提交
    • F
      brcmfmac: add out of band interrupt support · ba89bf19
      Franky Lin 提交于
      Some sdio host controllers do not support real in band interrupt.
      Software polling mode as a replacement is not fast enough for
      high throughput and new features. Also some in band interrupts
      do not support host wake up on embedded platform even when they
      are real physical interrupts. Therefore out of band (oob)
      interrupt mechanism is implemented for these scenarios.
      
      To provide oob irq number and flags used for irq registration in
      brcmfmac, a platform device contains irq resource must be
      registered in board specific code.
      
      Here is an example of platform device structure:
      struct resource brcmf_sdio_res[] = {
      	{
      		.start	= GPIO_BRCMF_SDIO_OOB_NUM,
      		.end	= GPIO_BRCMF_SDIO_OOB_NUM,
      		.flags  = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
      	}
      };
      struct platform_device brcmf_sdio_device = {
      	.name		= "brcmf_sdio_pd",
      	.id		= -1,
      	.num_resources	= ARRAY_SIZE(brcmf_sdio_res),
      	.resource	= brcmf_sdio_res,
      };
      Reviewed-by: Npieter-paul giesberts <pieterpg@broadcom.com>
      Reviewed-by: Narend van spriel <arend@broadcom.com>
      Signed-off-by: Nfranky lin <frankyl@broadcom.com>
      Signed-off-by: NFranky Lin <frankyl@broadcom.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      ba89bf19
  6. 23 2月, 2012 1 次提交
  7. 20 12月, 2011 1 次提交
  8. 14 12月, 2011 1 次提交
  9. 12 10月, 2011 1 次提交
  10. 07 9月, 2011 1 次提交
  11. 24 8月, 2011 5 次提交
  12. 28 6月, 2011 2 次提交
  13. 10 6月, 2011 1 次提交
  14. 12 5月, 2011 1 次提交
  15. 04 5月, 2011 1 次提交
  16. 21 4月, 2011 1 次提交
  17. 05 2月, 2011 1 次提交
  18. 25 1月, 2011 2 次提交
  19. 22 1月, 2011 1 次提交
  20. 27 9月, 2010 1 次提交
  21. 22 9月, 2010 1 次提交
  22. 09 9月, 2010 1 次提交