#!/bin/bash # # print Intel PT Power Events and PTWRITE. The intel_pt PMU event needs # to be specified with appropriate config terms. # if ! echo "$@" | grep -q intel_pt ; then echo "Options must include the Intel PT event e.g. -e intel_pt/pwr_evt,ptw/" echo "and for power events it probably needs to be system wide i.e. -a option" echo "For example: -a -e intel_pt/pwr_evt,branch=0/ sleep 1" exit 1 fi perf record $@ Z urn:sha1:ff6f46483f0e14b829cd5a71bafcbb1c136a84b6 Populate the owner field of the spmi driver when spmi_driver_register() is called in a similar fashion to how other *_driver_register() functions do it. This saves driver writers from having to do this themselves. Cc: Andy Gross <agross@codeaurora.org> Cc: Gilad Avidov <gavidov@codeaurora.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> spmi: Remove shutdown/suspend/resume kernel-doc 2014-11-27T03:33:57Z Stephen Boyd sboyd@codeaurora.org 2014-11-26T22:47:09Z urn:sha1:5b48e0605a84c3d2ccd06f6218df90e737c10559 These members of the driver structure are not present. Remove them from the kernel-doc. Cc: Josh Cartwright <joshc@codeaurora.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> spmi: Linux driver framework for SPMI 2014-02-15T19:55:28Z Kenneth Heitke kheitke@codeaurora.org 2014-02-12T19:44:22Z urn:sha1:5a86bf343976b9c8ab2f240bc866451fa67e5573 System Power Management Interface (SPMI) is a specification developed by the MIPI (Mobile Industry Process Interface) Alliance optimized for the real time control of Power Management ICs (PMIC). SPMI is a two-wire serial interface that supports up to 4 master devices and up to 16 logical slaves. The framework supports message APIs, multiple busses (1 controller per bus) and multiple clients/slave devices per controller. Signed-off-by: Kenneth Heitke <kheitke@codeaurora.org> Signed-off-by: Michael Bohan <mbohan@codeaurora.org> Signed-off-by: Josh Cartwright <joshc@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>