├── COPYING ├── Makefile ├── README ├── README.bugzilla ├── README.dataserver ├── README.stressreport ├── README.stresstest ├── SECURITY.md ├── analyze_boot.py ├── analyze_suspend.py ├── autotest ├── install.sh ├── platform_AnalyzeBoot │ ├── analyze_boot.py │ ├── control │ └── platform_AnalyzeBoot.py ├── platform_AnalyzeFreeze │ ├── analyze_suspend.py │ ├── control │ └── platform_AnalyzeFreeze.py └── platform_AnalyzeSuspend │ ├── analyze_suspend.py │ ├── control │ └── platform_AnalyzeSuspend.py ├── bootgraph.8 ├── bootgraph.py ├── config ├── bisect-example.cfg ├── cgskip.txt ├── custom-timeline-functions.cfg ├── debug-serio-suspend.cfg ├── example.cfg ├── freeze-callgraph.cfg ├── freeze-dev.cfg ├── freeze.cfg ├── netfix-otcpl.cfg ├── netfix-tebrandt.cfg ├── netfix.cfg ├── standby-callgraph.cfg ├── standby-dev.cfg ├── standby.cfg ├── stresstest-intel-local.cfg ├── stresstest-intel.cfg ├── suspend-callgraph.cfg ├── suspend-dev.cfg ├── suspend-x2-proc.cfg └── suspend.cfg ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── pm-graph.links ├── pm-graph.manpages ├── rules └── source │ ├── format │ └── options ├── dev ├── 0001-scsi-sr-use-block-layer-runtime-PM.patch ├── 0002-SCSI-pm-skip-resume-for-scsi-device-tree.patch ├── 0003-ata-skip-resume-for-ata-port.patch ├── aaron-scsi.patch ├── ata_deferred_resume.patch ├── ata_full_dev.patch ├── ata_resume_async.patch ├── ata_resume_async_dev.patch ├── hard-disk-resume │ ├── ata_port_resume_async.patch │ ├── mail0.txt │ ├── mail1.txt │ ├── mail2.txt │ └── sd_resume_async.patch ├── hard_disk_deferred_resume.patch ├── intel_pci_quirk_remove_d3_delay.patch ├── pm-deferred_resume.patch ├── pm_resume_async_non_blocking.patch └── usb-resume │ ├── skynet-usb-layout.txt │ ├── usb-trace.patch │ ├── usb-xhci-suspend-optimize.patch │ └── usb_address0.patch ├── devtest ├── devtest.sh ├── suspend-061314-131149 │ ├── run.sh │ ├── skynet_standby.html │ ├── skynet_standby_dmesg.txt │ └── skynet_standby_ftrace.txt ├── suspend-061314-131447 │ ├── run.sh │ ├── skynet_freeze.html │ ├── skynet_freeze_dmesg.txt │ └── skynet_freeze_ftrace.txt ├── suspend-061314-132459 │ ├── run.sh │ ├── skynet_mem.html │ ├── skynet_mem_dmesg.txt │ └── skynet_mem_ftrace.txt └── suspend-061314-132803 │ ├── run.sh │ ├── skynet_disk.html │ ├── skynet_disk_dmesg.txt │ └── skynet_disk_ftrace.txt ├── kernel ├── 3.10 │ ├── 1-enable_ftrace_in_suspendresume.patch │ ├── 2-enable_trace_events_suspend_resume.patch │ └── 3-enable_trace_events_device_pm_callback.patch ├── 3.14 │ └── suspend_resume_and_pm_callback_full.patch ├── extra-timeline-detail │ ├── 1-trace_suspend_resume_from_module.patch │ ├── 2-ata_port_resume_async.patch │ └── 3-i915-first-page-flip-after-resume.patch ├── pre-3.11-rc2 │ └── enable_ftrace_in_suspendresume.patch ├── pre-3.15 │ ├── enable_trace_events_device_pm_callback.patch │ └── enable_trace_events_suspend_resume.patch └── usb │ ├── 0000-cover-letter.patch │ ├── 0001-USB-add-switch-to-turn-off-padding-of-resume-time-de.patch │ └── 0002-USB-usb-timing-value-debug.patch ├── lib ├── __init__.py ├── argconfig.py ├── bugzilla.py ├── common.py ├── googleapi.py ├── kernel.py ├── parallel.py └── remotemachine.py ├── sleepgraph.8 ├── sleepgraph.py ├── stressreport.py ├── stresstest.py └── tools ├── android.sh ├── bisect-test.sh ├── bisecttest.sh ├── buggymon.py ├── config ├── dataserver.py ├── ftrace.py ├── googledrive.py ├── hwcheck.py ├── intel-multitest-handler.sh ├── intel-stresstest-friday.sh ├── intel-stresstest-local.sh ├── intel-stresstest-monday.sh ├── intel-stresstest-sunday.sh ├── intel-stresstest.sh ├── intel-updatecache.sh ├── kernelbuild.sh ├── lib ├── logfix.py ├── makedeb.sh ├── netfix.py ├── perftest.py ├── procmon.py ├── sanitycheck.sh ├── stresskernelbuild └── testall.sh /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/README -------------------------------------------------------------------------------- /README.bugzilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/README.bugzilla -------------------------------------------------------------------------------- /README.dataserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/README.dataserver -------------------------------------------------------------------------------- /README.stressreport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/README.stressreport -------------------------------------------------------------------------------- /README.stresstest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/README.stresstest -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/SECURITY.md -------------------------------------------------------------------------------- /analyze_boot.py: -------------------------------------------------------------------------------- 1 | bootgraph.py -------------------------------------------------------------------------------- /analyze_suspend.py: -------------------------------------------------------------------------------- 1 | sleepgraph.py -------------------------------------------------------------------------------- /autotest/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/autotest/install.sh -------------------------------------------------------------------------------- /autotest/platform_AnalyzeBoot/analyze_boot.py: -------------------------------------------------------------------------------- 1 | ../../analyze_boot.py -------------------------------------------------------------------------------- /autotest/platform_AnalyzeBoot/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/autotest/platform_AnalyzeBoot/control -------------------------------------------------------------------------------- /autotest/platform_AnalyzeBoot/platform_AnalyzeBoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/autotest/platform_AnalyzeBoot/platform_AnalyzeBoot.py -------------------------------------------------------------------------------- /autotest/platform_AnalyzeFreeze/analyze_suspend.py: -------------------------------------------------------------------------------- 1 | ../../analyze_suspend.py -------------------------------------------------------------------------------- /autotest/platform_AnalyzeFreeze/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/autotest/platform_AnalyzeFreeze/control -------------------------------------------------------------------------------- /autotest/platform_AnalyzeFreeze/platform_AnalyzeFreeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/autotest/platform_AnalyzeFreeze/platform_AnalyzeFreeze.py -------------------------------------------------------------------------------- /autotest/platform_AnalyzeSuspend/analyze_suspend.py: -------------------------------------------------------------------------------- 1 | ../../analyze_suspend.py -------------------------------------------------------------------------------- /autotest/platform_AnalyzeSuspend/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/autotest/platform_AnalyzeSuspend/control -------------------------------------------------------------------------------- /autotest/platform_AnalyzeSuspend/platform_AnalyzeSuspend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/autotest/platform_AnalyzeSuspend/platform_AnalyzeSuspend.py -------------------------------------------------------------------------------- /bootgraph.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/bootgraph.8 -------------------------------------------------------------------------------- /bootgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/bootgraph.py -------------------------------------------------------------------------------- /config/bisect-example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/bisect-example.cfg -------------------------------------------------------------------------------- /config/cgskip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/cgskip.txt -------------------------------------------------------------------------------- /config/custom-timeline-functions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/custom-timeline-functions.cfg -------------------------------------------------------------------------------- /config/debug-serio-suspend.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/debug-serio-suspend.cfg -------------------------------------------------------------------------------- /config/example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/example.cfg -------------------------------------------------------------------------------- /config/freeze-callgraph.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/freeze-callgraph.cfg -------------------------------------------------------------------------------- /config/freeze-dev.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/freeze-dev.cfg -------------------------------------------------------------------------------- /config/freeze.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/freeze.cfg -------------------------------------------------------------------------------- /config/netfix-otcpl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/netfix-otcpl.cfg -------------------------------------------------------------------------------- /config/netfix-tebrandt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/netfix-tebrandt.cfg -------------------------------------------------------------------------------- /config/netfix.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/netfix.cfg -------------------------------------------------------------------------------- /config/standby-callgraph.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/standby-callgraph.cfg -------------------------------------------------------------------------------- /config/standby-dev.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/standby-dev.cfg -------------------------------------------------------------------------------- /config/standby.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/standby.cfg -------------------------------------------------------------------------------- /config/stresstest-intel-local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/stresstest-intel-local.cfg -------------------------------------------------------------------------------- /config/stresstest-intel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/stresstest-intel.cfg -------------------------------------------------------------------------------- /config/suspend-callgraph.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/suspend-callgraph.cfg -------------------------------------------------------------------------------- /config/suspend-dev.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/suspend-dev.cfg -------------------------------------------------------------------------------- /config/suspend-x2-proc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/suspend-x2-proc.cfg -------------------------------------------------------------------------------- /config/suspend.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/config/suspend.cfg -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /debian/pm-graph.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/debian/pm-graph.links -------------------------------------------------------------------------------- /debian/pm-graph.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/debian/pm-graph.manpages -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/debian/source/options -------------------------------------------------------------------------------- /dev/0001-scsi-sr-use-block-layer-runtime-PM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/0001-scsi-sr-use-block-layer-runtime-PM.patch -------------------------------------------------------------------------------- /dev/0002-SCSI-pm-skip-resume-for-scsi-device-tree.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/0002-SCSI-pm-skip-resume-for-scsi-device-tree.patch -------------------------------------------------------------------------------- /dev/0003-ata-skip-resume-for-ata-port.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/0003-ata-skip-resume-for-ata-port.patch -------------------------------------------------------------------------------- /dev/aaron-scsi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/aaron-scsi.patch -------------------------------------------------------------------------------- /dev/ata_deferred_resume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/ata_deferred_resume.patch -------------------------------------------------------------------------------- /dev/ata_full_dev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/ata_full_dev.patch -------------------------------------------------------------------------------- /dev/ata_resume_async.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/ata_resume_async.patch -------------------------------------------------------------------------------- /dev/ata_resume_async_dev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/ata_resume_async_dev.patch -------------------------------------------------------------------------------- /dev/hard-disk-resume/ata_port_resume_async.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/hard-disk-resume/ata_port_resume_async.patch -------------------------------------------------------------------------------- /dev/hard-disk-resume/mail0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/hard-disk-resume/mail0.txt -------------------------------------------------------------------------------- /dev/hard-disk-resume/mail1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/hard-disk-resume/mail1.txt -------------------------------------------------------------------------------- /dev/hard-disk-resume/mail2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/hard-disk-resume/mail2.txt -------------------------------------------------------------------------------- /dev/hard-disk-resume/sd_resume_async.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/hard-disk-resume/sd_resume_async.patch -------------------------------------------------------------------------------- /dev/hard_disk_deferred_resume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/hard_disk_deferred_resume.patch -------------------------------------------------------------------------------- /dev/intel_pci_quirk_remove_d3_delay.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/intel_pci_quirk_remove_d3_delay.patch -------------------------------------------------------------------------------- /dev/pm-deferred_resume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/pm-deferred_resume.patch -------------------------------------------------------------------------------- /dev/pm_resume_async_non_blocking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/pm_resume_async_non_blocking.patch -------------------------------------------------------------------------------- /dev/usb-resume/skynet-usb-layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/usb-resume/skynet-usb-layout.txt -------------------------------------------------------------------------------- /dev/usb-resume/usb-trace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/usb-resume/usb-trace.patch -------------------------------------------------------------------------------- /dev/usb-resume/usb-xhci-suspend-optimize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/usb-resume/usb-xhci-suspend-optimize.patch -------------------------------------------------------------------------------- /dev/usb-resume/usb_address0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/dev/usb-resume/usb_address0.patch -------------------------------------------------------------------------------- /devtest/devtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/devtest.sh -------------------------------------------------------------------------------- /devtest/suspend-061314-131149/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-131149/run.sh -------------------------------------------------------------------------------- /devtest/suspend-061314-131149/skynet_standby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-131149/skynet_standby.html -------------------------------------------------------------------------------- /devtest/suspend-061314-131149/skynet_standby_dmesg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-131149/skynet_standby_dmesg.txt -------------------------------------------------------------------------------- /devtest/suspend-061314-131149/skynet_standby_ftrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-131149/skynet_standby_ftrace.txt -------------------------------------------------------------------------------- /devtest/suspend-061314-131447/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-131447/run.sh -------------------------------------------------------------------------------- /devtest/suspend-061314-131447/skynet_freeze.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-131447/skynet_freeze.html -------------------------------------------------------------------------------- /devtest/suspend-061314-131447/skynet_freeze_dmesg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-131447/skynet_freeze_dmesg.txt -------------------------------------------------------------------------------- /devtest/suspend-061314-131447/skynet_freeze_ftrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-131447/skynet_freeze_ftrace.txt -------------------------------------------------------------------------------- /devtest/suspend-061314-132459/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-132459/run.sh -------------------------------------------------------------------------------- /devtest/suspend-061314-132459/skynet_mem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-132459/skynet_mem.html -------------------------------------------------------------------------------- /devtest/suspend-061314-132459/skynet_mem_dmesg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-132459/skynet_mem_dmesg.txt -------------------------------------------------------------------------------- /devtest/suspend-061314-132459/skynet_mem_ftrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-132459/skynet_mem_ftrace.txt -------------------------------------------------------------------------------- /devtest/suspend-061314-132803/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-132803/run.sh -------------------------------------------------------------------------------- /devtest/suspend-061314-132803/skynet_disk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-132803/skynet_disk.html -------------------------------------------------------------------------------- /devtest/suspend-061314-132803/skynet_disk_dmesg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-132803/skynet_disk_dmesg.txt -------------------------------------------------------------------------------- /devtest/suspend-061314-132803/skynet_disk_ftrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/devtest/suspend-061314-132803/skynet_disk_ftrace.txt -------------------------------------------------------------------------------- /kernel/3.10/1-enable_ftrace_in_suspendresume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/3.10/1-enable_ftrace_in_suspendresume.patch -------------------------------------------------------------------------------- /kernel/3.10/2-enable_trace_events_suspend_resume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/3.10/2-enable_trace_events_suspend_resume.patch -------------------------------------------------------------------------------- /kernel/3.10/3-enable_trace_events_device_pm_callback.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/3.10/3-enable_trace_events_device_pm_callback.patch -------------------------------------------------------------------------------- /kernel/3.14/suspend_resume_and_pm_callback_full.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/3.14/suspend_resume_and_pm_callback_full.patch -------------------------------------------------------------------------------- /kernel/extra-timeline-detail/1-trace_suspend_resume_from_module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/extra-timeline-detail/1-trace_suspend_resume_from_module.patch -------------------------------------------------------------------------------- /kernel/extra-timeline-detail/2-ata_port_resume_async.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/extra-timeline-detail/2-ata_port_resume_async.patch -------------------------------------------------------------------------------- /kernel/extra-timeline-detail/3-i915-first-page-flip-after-resume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/extra-timeline-detail/3-i915-first-page-flip-after-resume.patch -------------------------------------------------------------------------------- /kernel/pre-3.11-rc2/enable_ftrace_in_suspendresume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/pre-3.11-rc2/enable_ftrace_in_suspendresume.patch -------------------------------------------------------------------------------- /kernel/pre-3.15/enable_trace_events_device_pm_callback.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/pre-3.15/enable_trace_events_device_pm_callback.patch -------------------------------------------------------------------------------- /kernel/pre-3.15/enable_trace_events_suspend_resume.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/pre-3.15/enable_trace_events_suspend_resume.patch -------------------------------------------------------------------------------- /kernel/usb/0000-cover-letter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/usb/0000-cover-letter.patch -------------------------------------------------------------------------------- /kernel/usb/0001-USB-add-switch-to-turn-off-padding-of-resume-time-de.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/usb/0001-USB-add-switch-to-turn-off-padding-of-resume-time-de.patch -------------------------------------------------------------------------------- /kernel/usb/0002-USB-usb-timing-value-debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/kernel/usb/0002-USB-usb-timing-value-debug.patch -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/argconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/lib/argconfig.py -------------------------------------------------------------------------------- /lib/bugzilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/lib/bugzilla.py -------------------------------------------------------------------------------- /lib/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/lib/common.py -------------------------------------------------------------------------------- /lib/googleapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/lib/googleapi.py -------------------------------------------------------------------------------- /lib/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/lib/kernel.py -------------------------------------------------------------------------------- /lib/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/lib/parallel.py -------------------------------------------------------------------------------- /lib/remotemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/lib/remotemachine.py -------------------------------------------------------------------------------- /sleepgraph.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/sleepgraph.8 -------------------------------------------------------------------------------- /sleepgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/sleepgraph.py -------------------------------------------------------------------------------- /stressreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/stressreport.py -------------------------------------------------------------------------------- /stresstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/stresstest.py -------------------------------------------------------------------------------- /tools/android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/android.sh -------------------------------------------------------------------------------- /tools/bisect-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/bisect-test.sh -------------------------------------------------------------------------------- /tools/bisecttest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/bisecttest.sh -------------------------------------------------------------------------------- /tools/buggymon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/buggymon.py -------------------------------------------------------------------------------- /tools/config: -------------------------------------------------------------------------------- 1 | ../config -------------------------------------------------------------------------------- /tools/dataserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/dataserver.py -------------------------------------------------------------------------------- /tools/ftrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/ftrace.py -------------------------------------------------------------------------------- /tools/googledrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/googledrive.py -------------------------------------------------------------------------------- /tools/hwcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/hwcheck.py -------------------------------------------------------------------------------- /tools/intel-multitest-handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/intel-multitest-handler.sh -------------------------------------------------------------------------------- /tools/intel-stresstest-friday.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/intel-stresstest-friday.sh -------------------------------------------------------------------------------- /tools/intel-stresstest-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/intel-stresstest-local.sh -------------------------------------------------------------------------------- /tools/intel-stresstest-monday.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/intel-stresstest-monday.sh -------------------------------------------------------------------------------- /tools/intel-stresstest-sunday.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/intel-stresstest-sunday.sh -------------------------------------------------------------------------------- /tools/intel-stresstest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/intel-stresstest.sh -------------------------------------------------------------------------------- /tools/intel-updatecache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/intel-updatecache.sh -------------------------------------------------------------------------------- /tools/kernelbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/kernelbuild.sh -------------------------------------------------------------------------------- /tools/lib: -------------------------------------------------------------------------------- 1 | ../lib -------------------------------------------------------------------------------- /tools/logfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/logfix.py -------------------------------------------------------------------------------- /tools/makedeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/makedeb.sh -------------------------------------------------------------------------------- /tools/netfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/netfix.py -------------------------------------------------------------------------------- /tools/perftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/perftest.py -------------------------------------------------------------------------------- /tools/procmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/procmon.py -------------------------------------------------------------------------------- /tools/sanitycheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/sanitycheck.sh -------------------------------------------------------------------------------- /tools/stresskernelbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/stresskernelbuild -------------------------------------------------------------------------------- /tools/testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/pm-graph/HEAD/tools/testall.sh --------------------------------------------------------------------------------