1. 26 8月, 2019 1 次提交
  2. 09 4月, 2019 4 次提交
  3. 17 5月, 2018 1 次提交
  4. 15 2月, 2018 2 次提交
  5. 11 10月, 2017 1 次提交
  6. 10 11月, 2016 1 次提交
  7. 10 6月, 2016 1 次提交
  8. 02 6月, 2015 1 次提交
  9. 26 11月, 2014 1 次提交
  10. 14 10月, 2013 2 次提交
  11. 09 10月, 2013 3 次提交
  12. 23 8月, 2013 1 次提交
  13. 30 7月, 2013 2 次提交
  14. 09 6月, 2013 1 次提交
  15. 08 6月, 2013 1 次提交
    • V
      ARM: AM33XX: hwmod data: irq, dma and addr info clean up · 49006bfd
      Vaibhav Hiremath 提交于
      AM33XX only supports DT boot mode and with addition of
      extracting module resources like, irq, dma and address space
      from DT block, so now we can remove duplicate information from
      hwmod data file.
      
      This patch cleanups-up/deletes,
      
           - All references to "omap_hwmod_irq_info" data.
           - All references to "omap_hwmod_dma_info" data.
           - References to "omap_hwmod_addr_space" of the modules
             for which DT node is available with required address
             space information.
           - For the modules where "sysc" field is not applicable,
             we don't need module address space, so remove them as well.
           - The hwmod like firewall etc which are not useful are also
             deleted.
      
      This cleanup gets us around ~1100 LOC of negative diff.
      Patch is boot tested on AM335x-EVM along with below modules -
      	- Matrix-keypad
      	- Volume up/down keys
      	- Ethernet
      	- RTC
      	- WDT
      Signed-off-by: NVaibhav Hiremath <hvaibhav@ti.com>
      Signed-off-by: NSricharan R <r.sricharan@ti.com>
      Signed-off-by: NSantosh Shilimkar <santosh.shilimkar@ti.com>
      Acked-by: NPaul Walmsley <paul@pwsan.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      49006bfd
  16. 03 6月, 2013 1 次提交
  17. 20 5月, 2013 1 次提交
  18. 01 4月, 2013 1 次提交
    • V
      ARM: OMAP2+: AM33xx: hwmod: Add missing sysc definition to wdt1 entry · 05cf03b6
      Vaibhav Hiremath 提交于
      This patch adds sysc definitions to the wdt1 hwmod entry, which in-turn
      makes sure that sysc idle bit-fields are configured to valid state on
      enable/disable callbacks.
      
      With the recent submitted patch from Santosh Shilimkar,
      "ARM: OMAP2+: hwmod: Don't call _init_mpu_rt_base if no sysc"
      (commit: 4a98c2d89), it is required to add sysconf
      information to each valid hwmod entry, else device will not be
      come out from idle state properly and leads to below kernel
      crash  -
      
      [2.190237] Unhandled fault: external abort on non-linefetch (0x1028) at
      0xf9e35034
      [2.198325] Internal error: : 1028 [#1] SMP ARM
      [2.203101] Modules linked in:
      [2.206334] CPU: 0    Not tainted  (3.9.0-rc3-00059-gd114294#1)
      [2.212679] PC is at omap_wdt_disable.clone.5+0xc/0x60
      [2.218090] LR is at omap_wdt_probe+0x184/0x1fc
      Signed-off-by: NVaibhav Hiremath <hvaibhav@ti.com>
      Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
      Cc: Benoit Cousson <benoit.cousson@linaro.org>
      Cc: Paul Walmsley <paul@pwsan.com>
      05cf03b6
  19. 31 3月, 2013 2 次提交
  20. 08 2月, 2013 7 次提交
  21. 08 1月, 2013 1 次提交
  22. 02 1月, 2013 1 次提交
    • P
      ARM: OMAP AM33xx: hwmod data: resolve sparse warnings · 9816aa80
      Paul Walmsley 提交于
      Commit 70384a6a ("ARM: OMAP3+:
      hwmod: Add AM33XX HWMOD data for davinci_mdio module") adds two
      new sparse warnings:
      
      arch/arm/mach-omap2/omap_hwmod_33xx_data.c:2518:30: warning: symbol 'am33xx_mdio_addr_space' was not declared. Should it be static?
      arch/arm/mach-omap2/omap_hwmod_33xx_data.c:2526:26: warning: symbol 'am33xx_cpgmac0__mdio' was not declared. Should it be static?
      
      Fix by marking the two new records as static.
      Signed-off-by: NPaul Walmsley <paul@pwsan.com>
      Cc: Mugunthan V N <mugunthanvnm@ti.com>
      Cc: Vaibhav Hiremath <hvaibhav@ti.com>
      Cc: Peter Korsgaard <jacmet@sunsite.dk>
      Cc: Richard Cochran <richardcochran@gmail.com>
      Cc: David S. Miller <davem@davemloft.net>
      Acked-by: NMugunthan V N <mugunthanvnm@ti.com>
      9816aa80
  23. 28 11月, 2012 1 次提交
  24. 15 11月, 2012 1 次提交
  25. 19 10月, 2012 1 次提交
    • T
      ARM: OMAP: Split plat/cpu.h into local soc.h for mach-omap1 and mach-omap2 · e4c060db
      Tony Lindgren 提交于
      We want to remove plat/cpu.h. To do this, let's first split
      it to private soc.h to mach-omap1 and mach-omap2. We have to
      keep plat/cpu.h around until the remaining drivers are fixed,
      so let's include the local soc.h in plat/cpu.h and for drivers
      still including plat/cpu.h.
      
      Once the drivers are fixed not to include plat/cpu.h, we
      can remove the file.
      
      This is needed for the ARM common zImage support.
      
      [tony@atomide.com: updated to not print a warning]
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      e4c060db