1. 19 4月, 2017 3 次提交
    • F
      clocksource: arm_arch_timer: move arch_timer_needs_of_probing into DT init call · ca0e1b52
      Fu Wei 提交于
      To cleanly split code paths specific to ACPI or DT at a higher level,
      this patch removes arch_timer_init(), folding the relevant
      parts of its logic into existing callers.
      
      This pathes the way for further rework, and saves a few lines.
      Signed-off-by: NFu Wei <fu.wei@linaro.org>
      Reviewed-by: NHanjun Guo <hanjun.guo@linaro.org>
      [Mark: reword commit message]
      Signed-off-by: NMark Rutland <mark.rutland@arm.com>
      ca0e1b52
    • F
      clocksource: arm_arch_timer: refactor arch_timer_needs_probing · 13bf6992
      Fu Wei 提交于
      When booting with DT, it's possible for timer nodes to be probed in any
      order. Some common initialisation needs to occur after all nodes have
      been probed, and arch_timer_common_init() has code to detect when this
      has happened.
      
      This logic is DT-specific, and it would be best to factor it out of the
      common code that will be shared with ACPI.
      
      This patch folds this into the existing arch_timer_needs_probing(),
      which is renamed to arch_timer_needs_of_probing(), and no longer takes
      any arguments. This is only called when using DT, and not when using
      ACPI, which will have a deterministic probe order.
      Signed-off-by: NFu Wei <fu.wei@linaro.org>
      Reviewed-by: NHanjun Guo <hanjun.guo@linaro.org>
      [Mark: reword commit message]
      Signed-off-by: NMark Rutland <mark.rutland@arm.com>
      13bf6992
    • F
      clocksource: arm_arch_timer: split dt-only rate handling · 5d3dfa96
      Fu Wei 提交于
      For historical reasons, rate detection when probing via DT is somewhat
      convoluted. We tried to package this up in arch_timer_detect_rate(), but
      with the addition of ACPI worse, and gets in the way of stringent rate
      checking when ACPI is used.
      
      This patch makes arch_timer_detect_rate() specific to DT, ripping out
      ACPI logic. In preparation for rework of the MMIO timer probing, the
      reading of the relevant CNTFRQ register is factored out to callers. The
      function is then renamed to arch_timer_of_configure_rate(), which better
      represents its new place in the world.
      
      Comments are added in the DT and ACPI probe paths to explain this.
      Signed-off-by: NFu Wei <fu.wei@linaro.org>
      [Mark: reword commit message]
      Signed-off-by: NMark Rutland <mark.rutland@arm.com>
      5d3dfa96
  2. 10 4月, 2017 6 次提交
  3. 07 4月, 2017 12 次提交
  4. 02 3月, 2017 1 次提交
  5. 12 2月, 2017 1 次提交
  6. 08 2月, 2017 3 次提交
  7. 25 12月, 2016 2 次提交
  8. 21 11月, 2016 2 次提交
  9. 24 9月, 2016 2 次提交
  10. 01 8月, 2016 1 次提交
    • M
      clocksource/arm_arch_timer: Force per-CPU interrupt to be level-triggered · f005bd7e
      Marc Zyngier 提交于
      The ARM architected timer produces level-triggered interrupts (this
      is mandated by the architecture). Unfortunately, a number of
      device-trees get this wrong, and expose an edge-triggered interrupt.
      
      Until now, this wasn't too much an issue, as the programming of the
      trigger would fail (the corresponding PPI cannot be reconfigured),
      and the kernel would be happy with this. But we're about to change
      this, and trust DT a lot if the driver doesn't provide its own
      trigger information. In that context, the timer breaks badly.
      
      While we do need to fix the DTs, there is also some userspace out
      there (kvmtool) that generates the same kind of broken DT on the
      fly, and that will completely break with newer kernels.
      
      As a safety measure, and to keep buggy software alive as well as
      buying us some time to fix DTs all over the place, let's check
      what trigger configuration has been given us by the firmware.
      If this is not a level configuration, then we know that the
      DT/ACPI configuration is bust, and we pick some defaults which
      won't be worse than the existing setup.
      Signed-off-by: NMarc Zyngier <marc.zyngier@arm.com>
      Cc: Andrew Lunn <andrew@lunn.ch>
      Cc: Liu Gang <Gang.Liu@nxp.com>
      Cc: Mark Rutland <marc.rutland@arm.com>
      Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
      Cc: Wenbin Song <Wenbin.Song@freescale.com>
      Cc: Mingkai Hu <Mingkai.Hu@freescale.com>
      Cc: Florian Fainelli <f.fainelli@gmail.com>
      Cc: Kevin Hilman <khilman@baylibre.com>
      Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
      Cc: Michal Simek <michal.simek@xilinx.com>
      Cc: Jon Hunter <jonathanh@nvidia.com>
      Cc: arm@kernel.org
      Cc: bcm-kernel-feedback-list@broadcom.com
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
      Cc: Jason Cooper <jason@lakedaemon.net>
      Cc: Ray Jui <rjui@broadcom.com>
      Cc: "Hou Zhiqiang" <B48286@freescale.com>
      Cc: Tirumalesh Chalamarla <tchalamarla@cavium.com>
      Cc: linux-samsung-soc@vger.kernel.org
      Cc: Yuan Yao <yao.yuan@nxp.com>
      Cc: Jan Glauber <jglauber@cavium.com>
      Cc: Gregory Clement <gregory.clement@free-electrons.com>
      Cc: linux-amlogic@lists.infradead.org
      Cc: soren.brinkmann@xilinx.com
      Cc: Rajesh Bhagat <rajesh.bhagat@freescale.com>
      Cc: Scott Branden <sbranden@broadcom.com>
      Cc: Duc Dang <dhdang@apm.com>
      Cc: Kukjin Kim <kgene@kernel.org>
      Cc: Carlo Caione <carlo@caione.org>
      Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
      Link: http://lkml.kernel.org/r/1470045256-9032-2-git-send-email-marc.zyngier@arm.comSigned-off-by: NThomas Gleixner <tglx@linutronix.de>
      f005bd7e
  11. 15 7月, 2016 1 次提交
  12. 28 6月, 2016 3 次提交
  13. 03 5月, 2016 3 次提交