aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python/bin (follow)
AgeCommit message (Expand)AuthorFilesLines
2018-06-06perf script powerpc: Python script for hypervisor call statisticsRavi Bangoria2-0/+4
2018-01-12perf script python: Add script to profile and resolve physical mem typeKan Liang2-0/+22
2017-08-15perf script python: Add support for exporting to sqlite3Adrian Hunter2-0/+37
2017-06-30perf intel-pt: Add example script for power events and PTWRITEAdrian Hunter2-0/+16
2016-06-21perf script: Add stackcollapse.py scriptPaolo Bonzini2-0/+11
2015-08-28perf scripts python: Add new compaction-times scriptTony Jones2-0/+6
2014-11-03perf tools: Add call information to Python exportAdrian Hunter1-5/+10
2014-10-29perf script: Add Python script to export to postgresqlAdrian Hunter2-0/+32
2014-06-25perf scripts: Fallback to syscalls:* when raw_syscalls:* is not availableDaniel Bristot de Oliveira4-4/+8
2012-09-17perf scripts: Add event_analyzing_sample-record/reportFeng Tang2-0/+11
2011-09-29perf script: Add drop monitor scriptNeil Horman2-0/+6
2010-12-25perf script: Finish the rename from trace to scriptArnaldo Carvalho de Melo7-7/+7
2010-11-10perf trace scripting: remove system-wide param from shell scriptsTom Zanussi7-7/+7
2010-10-26perf python scripting: Add futex-contention scriptArnaldo Carvalho de Melo2-0/+6
2010-10-23perf trace: Use $PERF_EXEC_PATH in canned report scriptsBen Hutchings6-6/+6
2010-09-07perf: Add a script to show packets processingKoki Sanagi2-0/+13
2010-08-02perf: New migration tool overviewFrederic Weisbecker2-0/+5
2010-05-10perf/trace/scripting: syscall-counts script cleanupTom Zanussi1-1/+1
2010-05-10perf/trace/scripting: syscall-counts-by-pid script cleanupTom Zanussi1-1/+1
2010-05-10perf/trace/scripting: failed-syscalls-by-pid script cleanupTom Zanussi1-1/+1
2010-04-30perf: Remove leftover useless options to record trace events from scriptsFrederic Weisbecker4-4/+4
2010-04-14perf trace/scripting: Enable scripting shell scripts for live modeTom Zanussi6-6/+24
2010-04-14perf trace/scripting: Add rwtop and sctop scriptsTom Zanussi2-0/+26
2010-02-25perf/scripts: Add syscall tracing scriptsTom Zanussi6-0/+18
nux/commit/drivers/gpu/drm/rcar-du/rcar_du_kms.c?id=a8fd12233e2348568893f1d0e251d8a4630a50af&follow=1'>drm: rcar-du: Use DRM core's atomic commit helperLaurent Pinchart1-90/+9 The DRM core atomic helper now supports asynchronous commits natively. The custom rcar-du implementation isn't needed anymore, remove it. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> 2017-04-04drm: rcar-du: Clear handled event pointer in CRTC stateLaurent Pinchart1-3/+3 The atomic commit helper requires drivers to clear the event pointer stored in the CRTC state when the event is handled. In preparation to using the helper, fix the driver. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> 2017-04-04drm: rcar-du: Handle event when disabling CRTCsLaurent Pinchart1-0/+7 The driver currently handles vblank events only when updating planes on a CRTC. The atomic update API however allows requesting an event when disabling a CRTC. This currently leads to event objects being leaked in the kernel and to events not being sent out. Fix it. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> 2017-04-04drm: rcar-du: Don't open code of_device_get_match_data()Wolfram Sang1-1/+1 This change will also make Coverity happy by avoiding a theoretical NULL pointer dereference; yet another reason is to use the above helper function to tighten the code and make it more readable. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Tested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 2017-04-04drm: rcar-du: Switch to encoder .atomic_mode_set() helper functionLaurent Pinchart2-8/+8 The native encoder mode set helper function for atomic drivers is .atomic_mode_set(). Replace the legacy .mode_set() implementation. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> 2017-04-04drm: panels: Add LVDS panel driverLaurent Pinchart3-0/+297 This driver supports LVDS panels that don't require device-specific handling of power supplies or control signals. It implements automatic backlight handling if the panel is attached to a backlight controller. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> 2017-04-04drm: Add data transmission order bus flagLaurent Pinchart1-0/+4 The flags indicate whether data is transmitted LSB to MSB or MSB to LSB on the bus. The exact meaning is bus-type dependent. For instance, for LVDS buses the flags indicate whether the seven data bits transmitted in a clock pulse are sent in normal order (MSB to LSB, slots 0 to 6) or reverse order (LSB to MSB, slots 6 to 0). Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Reviewed-by: Thierry Reding <treding@nvidia.com> 2017-04-04devicetree/bindings: display: Add bindings for two Mitsubishi panelsLaurent Pinchart2-0/+94 The AA104XD12 and AA121TD01 are LVDS display panels. Their bindings are modelled on the the LVDS panel bindings. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Acked-by: Rob Herring <robh@kernel.org>