Skip to content
  1. Mar 23, 2015
  2. Mar 13, 2015
  3. Mar 11, 2015
    • Michael Turquette's avatar
      clk: introduce clk_is_match · 3d3801ef
      Michael Turquette authored
      
      
      Some drivers compare struct clk pointers as a means of knowing
      if the two pointers reference the same clock hardware. This behavior is
      dubious (drivers must not dereference struct clk), but did not cause any
      regressions until the per-user struct clk patch was merged. Now the test
      for matching clk's will always fail with per-user struct clk's.
      
      clk_is_match is introduced to fix the regression and prevent drivers
      from comparing the pointers manually.
      
      Fixes: 035a61c3 ("clk: Make clk API return per-user struct clk instances")
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Cc: Tomeu Vizoso <tomeu.vizoso@collabora.com>
      Signed-off-by: default avatarMichael Turquette <mturquette@linaro.org>
      [arnd@arndb.de: Fix COMMON_CLK=N && HAS_CLK=Y config]
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      [sboyd@codeaurora.org: const arguments to clk_is_match() and
      remove unnecessary ternary operation]
      Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
      3d3801ef
  4. Mar 08, 2015
  5. Mar 07, 2015
  6. Mar 06, 2015
    • Dave Gerlach's avatar
      ARM: dts: am43xx: fix SLEWCTRL_FAST pinctrl binding · 10b21855
      Dave Gerlach authored
      
      
      According to AM437x TRM, Document SPRUHL7B, Revised December 2014,
      Section 7.2.1 Pad Control Registers, setting bit 19 of the pad control
      registers actually sets the SLEWCTRL value to slow rather than fast as
      the current macro indicates. Introduce a new macro, SLEWCTRL_SLOW, that
      sets the bit, and modify SLEWCTRL_FAST to 0 but keep it for
      completeness.
      
      Current users of the macro (i2c, mdio, and uart) are left unmodified as
      SLEWCTRL_FAST was the macro used and actual desired state. Tested on
      am437x-gp-evm with no difference in software performance seen.
      
      Signed-off-by: default avatarDave Gerlach <d-gerlach@ti.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      10b21855
    • Dave Gerlach's avatar
      ARM: dts: am33xx: fix SLEWCTRL_FAST pinctrl binding · 424e0f03
      Dave Gerlach authored
      
      
      According to AM335x TRM, Document spruh73l, Revised February 2015,
      Section 9.2.2 Pad Control Registers, setting bit 6 of the pad control
      registers actually sets the SLEWCTRL value to slow rather than fast as
      the current macro indicates. Introduce a new macro, SLEWCTRL_SLOW, that
      sets the bit, and modify SLEWCTRL_FAST to 0 but keep it for
      completeness.
      
      Current users of the macro (i2c and mdio) are left unmodified as
      SLEWCTRL_FAST was the macro used and actual desired state. Tested on
      am335x-gp-evm with no difference in software performance seen.
      
      Signed-off-by: default avatarDave Gerlach <d-gerlach@ti.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      424e0f03
  7. Mar 05, 2015
    • Rafael J. Wysocki's avatar
      cpuidle / sleep: Use broadcast timer for states that stop local timer · ef2b22ac
      Rafael J. Wysocki authored
      
      
      Commit 38106313 (PM / sleep: Re-implement suspend-to-idle handling)
      overlooked the fact that entering some sufficiently deep idle states
      by CPUs may cause their local timers to stop and in those cases it
      is necessary to switch over to a broadcast timer prior to entering
      the idle state.  If the cpuidle driver in use does not provide
      the new ->enter_freeze callback for any of the idle states, that
      problem affects suspend-to-idle too, but it is not taken into account
      after the changes made by commit 38106313.
      
      Fix that by changing the definition of cpuidle_enter_freeze() and
      re-arranging of the code in cpuidle_idle_call(), so the former does
      not call cpuidle_enter() any more and the fallback case is handled
      by cpuidle_idle_call() directly.
      
      Fixes: 38106313 (PM / sleep: Re-implement suspend-to-idle handling)
      Reported-and-tested-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Acked-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
      ef2b22ac
    • Tejun Heo's avatar
      workqueue: fix hang involving racing cancel[_delayed]_work_sync()'s for PREEMPT_NONE · 8603e1b3
      Tejun Heo authored
      cancel[_delayed]_work_sync() are implemented using
      __cancel_work_timer() which grabs the PENDING bit using
      try_to_grab_pending() and then flushes the work item with PENDING set
      to prevent the on-going execution of the work item from requeueing
      itself.
      
      try_to_grab_pending() can always grab PENDING bit without blocking
      except when someone else is doing the above flushing during
      cancelation.  In that case, try_to_grab_pending() returns -ENOENT.  In
      this case, __cancel_work_timer() currently invokes flush_work().  The
      assumption is that the completion of the work item is what the other
      canceling task would be waiting for too and thus waiting for the same
      condition and retrying should allow forward progress without excessive
      busy looping
      
      Unfortunately, this doesn't work if preemption is disabled or the
      latter task has real time priority.  Let's say task A just got woken
      up from flush_work() by the completion of the target work item.  If,
      before task A starts executing, task B gets scheduled and invokes
      __cancel_work_timer() on the same work item, its try_to_grab_pending()
      will return -ENOENT as the work item is still being canceled by task A
      and flush_work() will also immediately return false as the work item
      is no longer executing.  This puts task B in a busy loop possibly
      preventing task A from executing and clearing the canceling state on
      the work item leading to a hang.
      
      task A			task B			worker
      
      						executing work
      __cancel_work_timer()
        try_to_grab_pending()
        set work CANCELING
        flush_work()
          block for work completion
      						completion, wakes up A
      			__cancel_work_timer()
      			while (forever) {
      			  try_to_grab_pending()
      			    -ENOENT as work is being canceled
      			  flush_work()
      			    false as work is no longer executing
      			}
      
      This patch removes the possible hang by updating __cancel_work_timer()
      to explicitly wait for clearing of CANCELING rather than invoking
      flush_work() after try_to_grab_pending() fails with -ENOENT.
      
      Link: http://lkml.kernel.org/g/20150206171156.GA8942@axis.com
      
      
      
      v3: bit_waitqueue() can't be used for work items defined in vmalloc
          area.  Switched to custom wake function which matches the target
          work item and exclusive wait and wakeup.
      
      v2: v1 used wake_up() on bit_waitqueue() which leads to NULL deref if
          the target bit waitqueue has wait_bit_queue's on it.  Use
          DEFINE_WAIT_BIT() and __wake_up_bit() instead.  Reported by Tomeu
          Vizoso.
      
      Signed-off-by: default avatarTejun Heo <tj@kernel.org>
      Reported-by: default avatarRabin Vincent <rabin.vincent@axis.com>
      Cc: Tomeu Vizoso <tomeu.vizoso@gmail.com>
      Cc: stable@vger.kernel.org
      Tested-by: default avatarJesper Nilsson <jesper.nilsson@axis.com>
      Tested-by: default avatarRabin Vincent <rabin.vincent@axis.com>
      8603e1b3
  8. Mar 04, 2015
  9. Mar 03, 2015
  10. Mar 02, 2015
  11. Feb 27, 2015
  12. Feb 26, 2015
    • Johan Hovold's avatar
      Revert "USB: serial: make bulk_out_size a lower limit" · bc4b1f48
      Johan Hovold authored
      
      
      This reverts commit 5083fd7b.
      
      A bulk-out size smaller than the end-point size is indeed valid. The
      offending commit broke the usb-debug driver for EHCI debug devices,
      which use 8-byte buffers.
      
      Fixes: 5083fd7b ("USB: serial: make bulk_out_size a lower limit")
      Reported-by: default avatar"Li, Elvin" <elvin.li@intel.com>
      Cc: stable <stable@vger.kernel.org>	# v3.15
      Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
      bc4b1f48
    • Tomi Valkeinen's avatar
      OMAPDSS: fix regression with display sysfs files · a38bb793
      Tomi Valkeinen authored
      
      
      omapdss's sysfs directories for displays used to have 'name' file,
      giving the name for the display. This file was later renamed to
      'display_name' to avoid conflicts with i2c sysfs 'name' file. Looks like
      at least xserver-xorg-video-omap3 requires the 'name' file to be
      present.
      
      To fix the regression, this patch creates new kobjects for each display,
      allowing us to create sysfs directories for the displays. This way we
      have the whole directory for omapdss, and there will be no sysfs file
      clashes with the underlying display device's sysfs files.
      
      We can thus add the 'name' sysfs file back.
      
      Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
      Tested-by: default avatarNeilBrown <neilb@suse.de>
      a38bb793
    • Mark Rutland's avatar
      genirq / PM: better describe IRQF_NO_SUSPEND semantics · 737eb030
      Mark Rutland authored
      
      
      The IRQF_NO_SUSPEND flag is intended to be used for interrupts required
      to be enabled during the suspend-resume cycle. This mostly consists of
      IPIs and timer interrupts, potentially including chained irqchip
      interrupts if these are necessary to handle timers or IPIs. If an
      interrupt does not fall into one of the aforementioned categories,
      requesting it with IRQF_NO_SUSPEND is likely incorrect.
      
      Using IRQF_NO_SUSPEND does not guarantee that the interrupt can wake the
      system from a suspended state. For an interrupt to be able to trigger a
      wakeup, it may be necessary to program various components of the system.
      In these cases it is necessary to use {enable,disabled}_irq_wake.
      
      Unfortunately, several drivers assume that IRQF_NO_SUSPEND ensures that
      an IRQ can wake up the system, and the documentation can be read
      ambiguously w.r.t. this property.
      
      This patch updates the documentation regarding IRQF_NO_SUSPEND to make
      this caveat explicit, hopefully making future misuse rarer. Cleanup of
      existing misuse will occur as part of later patch series.
      
      Signed-off-by: default avatarMark Rutland <mark.rutland@arm.com>
      Acked-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      737eb030
  13. Feb 24, 2015
  14. Feb 23, 2015
  15. Feb 22, 2015
  16. Feb 21, 2015
    • Linus Torvalds's avatar
      kernel: make READ_ONCE() valid on const arguments · dd369297
      Linus Torvalds authored
      
      
      The use of READ_ONCE() causes lots of warnings witht he pending paravirt
      spinlock fixes, because those ends up having passing a member to a
      'const' structure to READ_ONCE().
      
      There should certainly be nothing wrong with using READ_ONCE() with a
      const source, but the helper function __read_once_size() would cause
      warnings because it would drop the 'const' qualifier, but also because
      the destination would be marked 'const' too due to the use of 'typeof'.
      
      Use a union of types in READ_ONCE() to avoid this issue.
      
      Also make sure to use parenthesis around the macro arguments to avoid
      possible operator precedence issues.
      
      Tested-by: default avatarIngo Molnar <mingo@kernel.org>
      Cc: Christian Borntraeger <borntraeger@de.ibm.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      dd369297
  17. Feb 20, 2015
Loading