An error occurred fetching the project authors.
  1. 12 Apr, 2016 1 commit
  2. 11 Apr, 2016 2 commits
  3. 26 Feb, 2016 1 commit
  4. 30 Nov, 2015 1 commit
  5. 24 Sep, 2015 1 commit
    • Kishon Vijay Abraham I's avatar
      ARM: dts: fix omap2+ address translation for pbias · 9a5e3f27
      Kishon Vijay Abraham I authored
      "ARM: dts: <omap2/omap4/omap5/dra7>: add minimal l4 bus
      layout with control module support" moved pbias_regulator dt node
      from being a child node of ocp to be the child node of
      'syscon'. Since 'syscon' doesn't have the 'ranges' property,
      address translation fails while trying to convert the address
      to resource. Fix it here by populating 'ranges' property in
      syscon dt node.
      
      Fixes: 72b10ac0 ("ARM: dts: omap24xx: add minimal l4 bus
      layout with control module support")
      
      Fixes: 7415b0b4 ("ARM: dts: omap4: add minimal l4 bus layout
      with control module support")
      
      Fixes: ed8509ed ("ARM: dts: omap5: add minimal l4 bus
      layout with control module support")
      
      Fixes: d919501f ("ARM: dts: dra7: add minimal l4 bus
      layout with control module support")
      Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
      [tony@atomide.com: fixed omap3 pbias to work]
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      9a5e3f27
  6. 14 Sep, 2015 1 commit
  7. 04 May, 2015 1 commit
  8. 31 Mar, 2015 1 commit
  9. 16 Mar, 2015 1 commit
  10. 24 Feb, 2015 1 commit
  11. 10 Nov, 2014 1 commit
  12. 05 Nov, 2014 1 commit
  13. 11 Sep, 2014 3 commits
  14. 09 Sep, 2014 1 commit
  15. 15 Jul, 2014 1 commit
  16. 27 May, 2014 1 commit
  17. 06 May, 2014 1 commit
    • Tony Lindgren's avatar
      ARM: dts: Fix omap serial wake-up when booted with device tree · 31f0820a
      Tony Lindgren authored
      We've had deeper idle states working on omaps for few years now,
      but only in the legacy mode. When booted with device tree, the
      wake-up events did not have a chance to work until commit
      3e6cee17 (pinctrl: single: Add support for wake-up interrupts)
      that recently got merged. In addition to that we also needed commit
      79d97015 (of/irq: create interrupts-extended property) and
      9ec36caf (of/irq: do irq resolution in platform_get_irq) that
      are now also merged.
      
      So let's fix the wake-up events for some selected omaps so devices
      booted in device tree mode won't just hang if deeper power states
      are enabled, and so systems can wake up from suspend to the serial
      port event.
      
      Note that there's no longer need to specify the wake-up bit in
      the pinctrl settings, the request_irq on the wake-up pin takes
      care of that.
      
      Cc: devicetree@vger.kernel.org
      Cc: "Benoît Cousson" <bcousson@baylibre.com>
      Cc: Kevin Hilman <khilman@linaro.org>
      Cc: Nishanth Menon <nm@ti.com>
      Cc: Paul Walmsley <paul@pwsan.com>
      Cc: Tero Kristo <t-kristo@ti.com>
      [tony@atomide.com: updated comments, added board LDP]
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      31f0820a
  18. 25 Apr, 2014 1 commit
    • Suman Anna's avatar
      ARM: dts: AM3517: Disable absent IPs inherited from OMAP3 · 4c051603
      Suman Anna authored
      AM3517 inherits OMAP3 dts file, but does not have all the IPs
      that are present on OMAP3. This patch disables the following
      absent IPs for AM3517: Mailbox, IVA, MMU_ISP, MPU_IVA SmartReflex.
      
      A label had to be added for IVA node in omap3.dtsi to be able to
      get a reference to the node for disabling.
      
      Otherwise we get the following warnings during booting:
      platform iva.2: Cannot lookup hwmod 'iva'
      platform 48094000.mailbox: Cannot lookup hwmod 'mailbox'
      platform 480bd400.mmu: Cannot lookup hwmod 'mmu_isp'
      platform 480c9000.smartreflex: Cannot lookup hwmod 'smartreflex_mpu_iva'
      Signed-off-by: default avatarSuman Anna <s-anna@ti.com>
      [tony@atomide.com: updated description for the warnings]
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      4c051603
  19. 18 Apr, 2014 1 commit
  20. 19 Mar, 2014 1 commit
  21. 12 Mar, 2014 2 commits
  22. 04 Mar, 2014 2 commits
  23. 28 Feb, 2014 2 commits
  24. 17 Jan, 2014 1 commit
  25. 07 Jan, 2014 1 commit
    • Laurent Pinchart's avatar
      ARM: dts: Split omap3 pinmux core device · 3d495383
      Laurent Pinchart authored
      The omap3_pmx_core pinmux device in the device tree handles the system
      controller module (SCM) PADCONFS fonction. Its control registers are
      split in two distinct areas, with other SCM registers in-between. Those
      other registers can't thus be requested by other drivers as the memory
      region gets reserved by the pinmux driver.
      
      Split the omap3_pmx_core device tree node in two for the two memory
      regions. The second region address and size depends on the SoC model.
      
      The change in omap3.dtsi fixes an "external abort on non-linefetch" when
      doing
      
      cat /sys/kernel/debug/pinctrl/.../pins
      
      on a Nokia N900.
      
      Note that the core2 padconf region is different for 3430 vs 3630,
      and does not exist on 3517 as noted by Nishanth Menon <nm@ti.com>.
      Reported-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
      Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
      Acked-By: default avatarSebastian Reichel <sre@debian.org>
      Signed-off-by: default avatarNishanth Menon <nm@ti.com>
      [tony@atomide.com: updated for 3430 vs 3630 core2 based on Nishant's patch]
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      3d495383
  26. 25 Nov, 2013 1 commit
    • Tony Lindgren's avatar
      ARM: OMAP2+: Fix more missing data for omap3.dtsi file · 7ce93f31
      Tony Lindgren authored
      After dropping the duplicate data in hwmod that now should come from
      the .dts files, I noticed few more entries missing. Let's add these
      as otherwise devices relying on these won't work.
      
      Looks like the side tone entries are bundled into the mcbsp1 to 3,
      so that may needs some special handling in the hwmod code as it's
      currently trying to look up mcbsp2_sidetone and mcbsp3_sidetone
      entries.
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      7ce93f31
  27. 22 Oct, 2013 2 commits
  28. 10 Oct, 2013 1 commit
  29. 08 Oct, 2013 2 commits
  30. 19 Jun, 2013 1 commit
  31. 18 Jun, 2013 2 commits