1. 19 7月, 2014 1 次提交
  2. 27 5月, 2014 1 次提交
  3. 24 5月, 2014 1 次提交
  4. 23 5月, 2014 1 次提交
  5. 16 5月, 2014 1 次提交
    • P
      mfd: vexpress: Convert custom func API to regmap · 3b9334ac
      Pawel Moll 提交于
      Components of the Versatile Express platform (configuration
      microcontrollers on motherboard and daughterboards in particular)
      talk to each other over a custom configuration bus. They
      provide miscellaneous functions (from clock generator control
      to energy sensors) which are represented as platform devices
      (and Device Tree nodes). The transactions on the bus can
      be generated by different "bridges" in the system, some
      of which are universal for the whole platform (for the price
      of high transfer latencies), others restricted to a subsystem
      (but much faster).
      
      Until now drivers for such functions were using custom "func"
      API, which is being replaced in this patch by regmap calls.
      This required:
      
      * a rework (and move to drivers/bus directory, as suggested
        by Samuel and Arnd) of the config bus core, which is much
        simpler now and uses device model infrastructure (class)
        to keep track of the bridges; non-DT case (soon to be
        retired anyway) is simply covered by a special device
        registration function
      
      * the new config-bus driver also takes over device population,
        so there is no need for special matching table for
        of_platform_populate nor "simple-bus" hack in the arm64
        model dtsi file (relevant bindings documentation has
        been updated); this allows all the vexpress devices
        fit into normal device model, making it possible
        to remove plenty of early inits and other hacks in
        the near future
      
      * adaptation of the syscfg bridge implementation in the
        sysreg driver, again making it much simpler; there is
        a special case of the "energy" function spanning two
        registers, where they should be both defined in the tree
        now, but backward compatibility is maintained in the code
      
      * modification of the relevant drivers:
      
        * hwmon - just a straight-forward API change
        * power/reset driver - API change
        * regulator - API change plus error handling
          simplification
        * osc clock driver - this one required larger rework
          in order to turn in into a standard platform driver
      Signed-off-by: NPawel Moll <pawel.moll@arm.com>
      Acked-by: NMark Brown <broonie@linaro.org>
      Acked-by: NLee Jones <lee.jones@linaro.org>
      Acked-by: NGuenter Roeck <linux@roeck-us.net>
      Acked-by: NMike Turquette <mturquette@linaro.org>
      3b9334ac
  6. 25 4月, 2014 1 次提交
    • P
      power/reset: vexpress: Fix restart/power off operation · d08b8037
      Pawel Moll 提交于
      The restart/power off implementation in the vexpress driver
      used to obtain the config function when necessary. This was
      wrong in two respects:
      
      1. It required memory allocation with disabled interrupts
      (it worked, but lockdep - when enabled - reported warnings).
      
      2. Used jiffies-based timeout, while jiffies are not running
      at this stage of system shutdown (therefore a config
      transaction error - if happened - would have never be reported).
      
      Fixed by pre-allocating the config function per device
      and using mdelay for timeout.
      Signed-off-by: NPawel Moll <pawel.moll@arm.com>
      d08b8037
  7. 04 3月, 2014 1 次提交
  8. 13 2月, 2014 1 次提交
  9. 24 12月, 2013 1 次提交
  10. 28 8月, 2013 1 次提交
    • P
      vexpress-poweroff: Should depend on the required infrastructure · a2c0206a
      Pawel Moll 提交于
      ARM Versatile Express reset driver requires platform-specific config
      infrastructure to be present in the kernel. When VEXPRESS_CONFIG is not
      selected, the build will fail like this:
      
      drivers/built-in.o: In function `vexpress_reset_do.clone.0':
      iio-trig-interrupt.c:(.text+0x1aff38): undefined reference to `__vexpress_config_func_get'
      iio-trig-interrupt.c:(.text+0x1aff4c): undefined reference to `vexpress_config_write'
      
      Added required dependency to the Kconfig entry.
      Signed-off-by: NPawel Moll <pawel.moll@arm.com>
      Signed-off-by: NAnton Vorontsov <anton@enomsg.org>
      a2c0206a
  11. 10 8月, 2013 2 次提交
  12. 10 7月, 2013 1 次提交
  13. 22 6月, 2013 1 次提交
  14. 21 3月, 2013 2 次提交
  15. 03 2月, 2013 1 次提交
  16. 20 1月, 2013 1 次提交
  17. 07 1月, 2013 3 次提交
  18. 04 1月, 2013 1 次提交
    • G
      Drivers: power: remove __dev* attributes. · 6d2cea4f
      Greg Kroah-Hartman 提交于
      CONFIG_HOTPLUG is going away as an option.  As a result, the __dev*
      markings need to be removed.
      
      This change removes the use of __devinit, __devexit_p, __devinitconst,
      and __devexit from these drivers.
      
      Based on patches originally written by Bill Pemberton, but redone by me
      in order to handle some of the coding style issues better, by hand.
      
      Cc: Bill Pemberton <wfp5p@virginia.edu>
      Cc: Anton Vorontsov <cbou@mail.ru>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Andrew Lunn <andrew@lunn.ch>
      Cc: Jamie Lentin <jm@lentin.co.uk>
      Cc: Jason Cooper <jason@lakedaemon.net>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      6d2cea4f
  19. 24 11月, 2012 1 次提交